home *** CD-ROM | disk | FTP | other *** search
/ Dictionaries & Language / Dictionaries and Language (Chestnut CD-ROM) (1993).iso / misc / itrns211 / prips < prev    next >
Encoding:
Text File  |  1991-08-31  |  528 b   |  17 lines

  1. #!/bin/sh
  2. # Shell program to cat PostScript output files generated
  3. # from itrans (-P option). Prepends the font description file
  4. # and the prologue file. Assumes Devnagari Output............
  5.  
  6. # set LIBDIR to the itrans lib directory
  7. LIBDIR=/usr1/avinash/ITRANS/lib
  8.  
  9. # set DOCAT to empty if you want output on stdout, else 
  10. # assign to a pipe to the printer
  11. # DOCAT=
  12. # DOCAT="| lp"
  13. DOCAT="| lp -oh"
  14.  
  15. eval cat $LIBDIR/devnac.ps $LIBDIR/itrans.pro $* $DOCAT
  16. # eval need to evaluate the | char, if present, in DOCAT
  17.